home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / include / Xm / Separator.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-30  |  1.2 KB  |  54 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC. 
  3.  * ALL RIGHTS RESERVED 
  4. */ 
  5. /* 
  6.  * Motif Release 1.2
  7. */ 
  8. /*   $RCSfile: Separator.h,v $ $Revision: 10.1 $ $Date: 1994/02/03 15:49:54 $ */
  9. /*
  10. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  11. /*  Separator Widget  */
  12. #ifndef _XmSeparator_h
  13. #define _XmSeparator_h
  14.  
  15. #include <Xm/Xm.h>
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21. #ifndef XmIsSeparator
  22. #define XmIsSeparator(w) XtIsSubclass(w, xmSeparatorWidgetClass)
  23. #endif /* XmIsSeparator */
  24.  
  25. externalref WidgetClass xmSeparatorWidgetClass;
  26.  
  27. typedef struct _XmSeparatorClassRec * XmSeparatorWidgetClass;
  28. typedef struct _XmSeparatorRec      * XmSeparatorWidget;
  29.  
  30.  
  31. /********    Public Function Declarations    ********/
  32. #ifdef _NO_PROTO
  33.  
  34. extern Widget XmCreateSeparator() ;
  35.  
  36. #else
  37.  
  38. extern Widget XmCreateSeparator( 
  39.                         Widget parent,
  40.                         char *name,
  41.                         ArgList arglist,
  42.                         Cardinal argcount) ;
  43.  
  44. #endif /* _NO_PROTO */
  45. /********    End Public Function Declarations    ********/
  46.  
  47.  
  48. #ifdef __cplusplus
  49. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  50. #endif
  51.  
  52. #endif /* _XmSeparator_h */
  53. /* DON'T ADD STUFF AFTER THIS #endif */
  54.